跳到主要内容

GetClassType

Returns a type of the ApiRange class.

Syntax

expression.GetClassType();

expression - A variable that represents a ApiRange class.

Parameters

This method doesn't have any parameters.

Returns

"range"

Example

This example gets a class type and inserts it into the document.

let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
paragraph.AddText("ONLYOFFICE Document Builder");
let range = paragraph.GetRange(0, 9);
let classType = range.GetClassType();
paragraph = Api.CreateParagraph();
paragraph.AddText("Class type: " + classType);
doc.Push(paragraph);